home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / v cisle / tclock / tclocklight-040702-3.exe / source / property / tcprop.h < prev    next >
C/C++ Source or Header  |  2004-01-18  |  3KB  |  96 lines

  1. /*-------------------------------------------
  2.   tcprop.h
  3. ---------------------------------------------*/
  4.  
  5. #define _WIN32_IE    0x0200
  6. #define _WIN32_WINNT 0x0400
  7. #define WINVER       0x0400
  8.  
  9. #include <windows.h>
  10. #include <commctrl.h>
  11. #include "resource.h"
  12. #include "../common/common.h"
  13.  
  14. /* ---------- main.c --------------- */
  15.  
  16. void MyHelp(HWND hwnd, const char *title);
  17. BOOL ExecCommandString(HWND hwnd, const char* command);
  18.  
  19. extern HINSTANCE g_hInst;
  20. extern char  g_mydir[];
  21. extern BOOL  g_bIniSetting;
  22. extern char  g_inifile[];
  23. extern char  g_langfile[];
  24. extern HFONT g_hfontDialog;
  25. extern int   g_winver;
  26. extern BOOL  g_bApplyClock;
  27. extern BOOL  g_bApplyTaskbar;
  28. extern BOOL  g_bApplyStartMenu;
  29. extern BOOL  g_bApplyTip;
  30. extern BOOL  g_bApplyMain;
  31. extern HICON g_hIconPlay, g_hIconStop;
  32.  
  33. /* ---------- pagecolor.c ---------- */
  34. BOOL CALLBACK PageColorProc(HWND hDlg, UINT message,
  35.     WPARAM wParam, LPARAM lParam);
  36.  
  37. /* ---------- pagesize.c ----------- */
  38. BOOL CALLBACK PageSizeProc(HWND hDlg, UINT message,
  39.     WPARAM wParam, LPARAM lParam);
  40.  
  41. /* ---------- pageformat.c --------- */
  42. BOOL CALLBACK PageFormatProc(HWND hDlg, UINT message,
  43.     WPARAM wParam, LPARAM lParam);
  44.  
  45. /* ---------- pageformat2.c -------- */
  46. BOOL CALLBACK DlgProcFormat2(HWND hDlg, UINT message,
  47.     WPARAM wParam, LPARAM lParam);
  48.  
  49. /* ---------- pagealarm.c ---------- */
  50. BOOL CALLBACK PageAlarmProc(HWND hDlg, UINT message,
  51.     WPARAM wParam, LPARAM lParam);
  52.  
  53. /* ---------- alarmday.c ----------- */
  54. int SetAlarmDay(HWND hDlg, PALARMSTRUCT pAS);
  55.  
  56. /* ---------- pagecuckoo.c --------- */
  57. BOOL CALLBACK PageCuckooProc(HWND hDlg, UINT message,
  58.     WPARAM wParam, LPARAM lParam);
  59.  
  60. /* ---------- pagemouse.c ---------- */
  61. BOOL CALLBACK PageMouseProc(HWND hDlg, UINT message,
  62.     WPARAM wParam, LPARAM lParam);
  63.  
  64. /* ---------- pagemouse2.c --------- */
  65. BOOL CALLBACK PageMouse2Proc(HWND hDlg, UINT message,
  66.     WPARAM wParam, LPARAM lParam);
  67.  
  68. /* ---------- pagetooltip.c ----------- */
  69. BOOL CALLBACK PageTooltipProc(HWND hDlg, UINT message,
  70.     WPARAM wParam, LPARAM lParam);
  71.  
  72. /* ---------- pagesntp.c ----------- */
  73. /* BOOL CALLBACK PageSNTPProc(HWND hDlg, UINT message,
  74.     WPARAM wParam, LPARAM lParam); */
  75.  
  76. /* ---------- pagestartbtn.c ------- */
  77. BOOL CALLBACK PageStartButtonProc(HWND hDlg, UINT message,
  78.     WPARAM wParam, LPARAM lParam);
  79.  
  80. /* ---------- selecticon.c --------- */
  81. BOOL SelectIconInDLL(HINSTANCE hInst, HWND hDlg, char* fname_index);
  82.  
  83. /* ---------- pagestartmenu.c ------- */
  84. BOOL CALLBACK PageStartMenuProc(HWND hDlg, UINT message,
  85.     WPARAM wParam, LPARAM lParam);
  86.  
  87. /* ---------- pagetaskbar.c -------- */
  88. BOOL CALLBACK PageTaskbarProc(HWND hDlg, UINT message,
  89.     WPARAM wParam, LPARAM lParam);
  90.  
  91. /* ---------- pagemisc.c ----------- */
  92. BOOL CALLBACK PageMiscProc(HWND hDlg, UINT message,
  93.     WPARAM wParam, LPARAM lParam);
  94.  
  95.  
  96.